home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
C
/
Applications
/
Portable Patmos
/
src
/
portable kernel
/
mac
/
getpid.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-02-23
|
156 b
|
12 lines
|
[
TEXT/KAHL
]
#include <Processes.h>
#include <sys/types.h>
pid_t getpid(void)
{
ProcessSerialNumber mysn;
GetCurrentProcess(&mysn);
return mysn.lowLongOfPSN;
}